home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / lib / gcc / i486-linux-gnu / 4.3 / include / nmmintrin.h < prev    next >
Encoding:
C/C++ Source or Header  |  2009-03-16  |  1.5 KB  |  41 lines

  1. /* Copyright (C) 2007 Free Software Foundation, Inc.
  2.  
  3.    This file is part of GCC.
  4.  
  5.    GCC is free software; you can redistribute it and/or modify
  6.    it under the terms of the GNU General Public License as published by
  7.    the Free Software Foundation; either version 2, or (at your option)
  8.    any later version.
  9.  
  10.    GCC is distributed in the hope that it will be useful,
  11.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.    GNU General Public License for more details.
  14.  
  15.    You should have received a copy of the GNU General Public License
  16.    along with GCC; see the file COPYING.  If not, write to
  17.    the Free Software Foundation, 59 Temple Place - Suite 330,
  18.    Boston, MA 02111-1307, USA.  */
  19.  
  20. /* As a special exception, if you include this header file into source
  21.    files compiled by GCC, this header file does not by itself cause
  22.    the resulting executable to be covered by the GNU General Public
  23.    License.  This exception does not however invalidate any other
  24.    reasons why the executable file might be covered by the GNU General
  25.    Public License.  */
  26.  
  27. /* Implemented from the specification included in the Intel C++ Compiler
  28.    User Guide and Reference, version 10.0.  */
  29.  
  30. #ifndef _NMMINTRIN_H_INCLUDED
  31. #define _NMMINTRIN_H_INCLUDED
  32.  
  33. #ifndef __SSE4_2__
  34. # error "SSE4.2 instruction set not enabled"
  35. #else
  36. /* We just include SSE4.1 header file.  */
  37. #include <smmintrin.h>
  38. #endif /* __SSE4_2__ */
  39.  
  40. #endif /* _NMMINTRIN_H_INCLUDED */
  41.